home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / enlightenment / data / other / icon / build.sh next >
Linux/UNIX/POSIX Shell Script  |  2005-09-25  |  936b  |  30 lines

  1. #!/bin/sh
  2.  
  3. # a .eap file is just a .edj file with added meta data for application launch
  4. # info. enlightenment_eapp can add/modify/delete this metadata. the script
  5. # below is an example of building an eap icon from scratch.
  6.  
  7. # actually compile a edje file with all the gfx etc.
  8. edje_cc $@ -id . -fd . icon.edc icon.eap
  9.  
  10. # add eapp properties to the file - they are ALL optional EXCEPT name and exe
  11. # and exe is optional for directory .eapp files
  12. enlightenment_eapp \
  13. icon.eap \
  14. -set-name "Application Name" \
  15. -set-generic "Generic name" \
  16. -set-comment "Comment on what this application does" \
  17. -set-exe "execute_line" \
  18. -set-win-name "window_name" \
  19. -set-win-class "window_class" \
  20. -set-icon-class "icon,class"
  21.  
  22. # other options u might want to use:
  23. # -lang LANG
  24. # -set-startup-notify 1/0 \
  25. # -set-win-title "window_title*glob" \
  26. # -set-win-role "window_role" \
  27. # -set-wait-exit 1/0 \
  28. #
  29. # see enlightenment_eapp -h for more -set options
  30.